home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6584 / 6584.xpi / chrome / flashvideodownloader / content / dialog.js < prev    next >
Text File  |  2009-10-05  |  392b  |  20 lines

  1. var FlashVDDialog = {
  2.  
  3.     init : function()
  4.     {
  5.         document.getElementById("header").setAttribute("label",window.arguments[1]);
  6.         document.getElementById("caption").setAttribute("label",window.arguments[2]);
  7.         document.getElementById("text").value = window.arguments[3];
  8.     },
  9.  
  10.     on_accept : function()
  11.     {
  12.         try
  13.         {
  14.             window.arguments[0].result = true;
  15.         }
  16.         catch(e) 
  17.         {}
  18.     }
  19. }
  20.